2006-06-02 Kristian Rietveld <kris@imendio.com>
* gtk/gtktreemodelfilter.c
(gtk_tree_model_filter_convert_child_path_to_path): need to use
gtk_tree_model_filter_get_iter_full() since the path returned
by gtk_real_tree_model_filter_convert_child_path_to_path() includes
invisible nodes.
+2006-06-02 Kristian Rietveld <kris@imendio.com>
+
+ * gtk/gtktreemodelfilter.c
+ (gtk_tree_model_filter_convert_child_path_to_path): need to use
+ gtk_tree_model_filter_get_iter_full() since the path returned
+ by gtk_real_tree_model_filter_convert_child_path_to_path() includes
+ invisible nodes.
+
2006-06-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkstatusicon.c (gtk_status_icon_get_geometry): Allow
+2006-06-02 Kristian Rietveld <kris@imendio.com>
+
+ * gtk/gtktreemodelfilter.c
+ (gtk_tree_model_filter_convert_child_path_to_path): need to use
+ gtk_tree_model_filter_get_iter_full() since the path returned
+ by gtk_real_tree_model_filter_convert_child_path_to_path() includes
+ invisible nodes.
+
2006-06-02 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkstatusicon.c (gtk_status_icon_get_geometry): Allow
* version of convert_child_path_to_path immediately returning
* a visible-nodes-only path.
*/
- gtk_tree_model_get_iter (GTK_TREE_MODEL (filter), &iter, path);
+ gtk_tree_model_filter_get_iter_full (GTK_TREE_MODEL (filter), &iter, path);
gtk_tree_path_free (path);
path = gtk_tree_model_get_path (GTK_TREE_MODEL (filter), &iter);